![[Threading Tab GIF]](/file/13761/Java - Summer 1996.iso/windows/doc/threadin.gif)
Fairly empty tab. More will be added, such as thread priorities, thread
sub-classes, number of threads and possibly thread groups.
- With Runnable Interface: The applet implements the 'Runnable' interface, which requires a run() method that gets called whenever you create a thread and pass it 'this'(this instance) class as its parameter.
- With Thread Sub-class: You use a derived class of Thread to implement threading rather than with the Runnable interface. This does not generate much code for you
- None: No threading whatsoever.